home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / HENSA / MISC / SHELL.ARC / Shell / Sources / c / ArrayLabel next >
Text File  |  1994-05-17  |  780b  |  36 lines

  1. #include "Shell.ArrayLabel.h"
  2. #include "Shell.Array.h"
  3. #include "Shell.FontLabel.h"
  4. #include "Shell.Vector.h"
  5.  
  6.  
  7. #define LABEL_YPOS Shell_TEXTYSIZE
  8.  
  9.  
  10. Shell_rectblock    *Shell_Add2DDoubleArrayLabel(
  11.     Shell_windblock *w, int x, int y, int xsize, int ysize,
  12.     int forecol, int backcol, double **data, char *text
  13.     )
  14. {
  15. Shell_FontLabel( w, x, y + LABEL_YPOS, forecol, backcol, text);
  16. return Shell_Add2DDoubleArray( w, x, y, xsize, ysize, forecol, backcol, data);
  17. }
  18.  
  19.  
  20.  
  21. Shell_rectblock *Shell_AddDoubleVerticalVectorLabel(
  22.     Shell_windblock    *wind,
  23.     int        x,
  24.     int        y,
  25.     int        size,
  26.     int        forecol,
  27.     int        backcol,
  28.     double        *data,
  29.     char        *text
  30.     )
  31. {
  32. Shell_FontLabel( wind, x, y + LABEL_YPOS, forecol, backcol, text);
  33. return Shell_AddDoubleVerticalVector( wind, x, y, size, forecol, backcol, data);
  34. }
  35.  
  36.